home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / MPW / GCC 1.37.1r15 / Tests / fnptr.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-12  |  97 b   |  11 lines  |  [TEXT/MPS ]

  1. void f();
  2.  
  3. void (*fp)() = f;
  4.  
  5. /* returns 0, but should return 1 */
  6.  
  7. main()
  8. {
  9.     return *fp == f;
  10. }
  11.